type github.com/klauspost/compress/flate.compressor

31 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L106: type compressor struct {
		deflate.go#L113: 	fill func(*compressor, []byte) int // copy data to window
		deflate.go#L114: 	step func(*compressor)             // process window
		deflate.go#L130: func (d *compressor) fillDeflate(b []byte) int {
		deflate.go#L171: func (d *compressor) writeBlock(tok *tokens, index int, eof bool) error {
		deflate.go#L188: func (d *compressor) writeBlockSkip(tok *tokens, index int, eof bool) error {
		deflate.go#L213: func (d *compressor) fillWindow(b []byte) {
		deflate.go#L271: func (d *compressor) findMatch(pos int, prevHead int, lookahead int) (length, offset int, ok bool) {
		deflate.go#L365: func (d *compressor) writeStoredBlock(buf []byte) error {
		deflate.go#L402: func (d *compressor) initDeflate() {
		deflate.go#L419: func (d *compressor) deflateLazy() {
		deflate.go#L704: func (d *compressor) store() {
		deflate.go#L713: func (d *compressor) fillBlock(b []byte) int {
		deflate.go#L722: func (d *compressor) storeHuff() {
		deflate.go#L734: func (d *compressor) storeFast() {
		deflate.go#L776: func (d *compressor) write(b []byte) (n int, err error) {
		deflate.go#L793: func (d *compressor) syncFlush() error {
		deflate.go#L808: func (d *compressor) init(w io.Writer, level int) (err error) {
		deflate.go#L814: 		d.fill = (*compressor).fillBlock
		deflate.go#L815: 		d.step = (*compressor).store
		deflate.go#L819: 		d.fill = (*compressor).fillBlock
		deflate.go#L820: 		d.step = (*compressor).storeHuff
		deflate.go#L828: 		d.fill = (*compressor).fillBlock
		deflate.go#L829: 		d.step = (*compressor).storeFast
		deflate.go#L835: 		d.fill = (*compressor).fillDeflate
		deflate.go#L836: 		d.step = (*compressor).deflateLazy
		deflate.go#L841: 		d.fill = (*compressor).fillBlock
		deflate.go#L842: 		d.step = (*compressor).storeFast
		deflate.go#L851: func (d *compressor) reset(w io.Writer) {
		deflate.go#L886: func (d *compressor) close() error {
		deflate.go#L964: 	d    compressor